home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / sbin / pm-powersave < prev    next >
Text File  |  2009-10-06  |  2KB  |  56 lines

  1. #!/bin/sh
  2. # vim:noexpandtab
  3. # Simple powersave script
  4. #
  5. # Copyright 2006 Red Hat, Inc.
  6. #
  7. # Based on work from:
  8. #    Bill Nottingham <notting@redhat.com>
  9. #    Peter Jones <pjones@redhat.com>
  10. #    David Zeuthen <davidz@redhat.com>
  11. #    Richard Hughes <richard@hughsie.com>
  12. #
  13. # This program is free software; you can redistribute it and/or modify
  14. # it under the terms of version 2 of the GNU General Public License as
  15. # published by the Free Software Foundation.
  16. #
  17. # This program is distributed in the hope that it will be useful,
  18. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  19. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  20. # GNU General Public License for more details.
  21. #
  22. # You should have received a copy of the GNU General Public License
  23. # along with this program; if not, write to the Free Software
  24. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  25. #
  26.  
  27. export STASHNAME=pm-powersave
  28. . "/usr/lib/pm-utils/pm-functions"
  29.  
  30. remove_powersave_lock() {
  31.     release_lock "${STASHNAME}.lock"
  32. }
  33.  
  34. # take the powersave lock.
  35. # ensure it gets released no matter how we exit.
  36. try_lock "${STASHNAME}.lock" || exit 1
  37. trap remove_powersave_lock 0
  38. mkdir -p "${STORAGEDIR}"
  39. rm -f "${INHIBIT}"
  40.  
  41. if [ "$1" = "true" -o "$1" = "false" ] ; then
  42.     init_logfile "${PM_LOGFILE}"
  43.     run_hooks power "$1"
  44. elif [ ! "$1" ]; then
  45.     # no arg?  Guess!
  46.     init_logfile "${PM_LOGFILE}"
  47.     if on_ac_power; then
  48.     run_hooks power false;
  49.     else
  50.     run_hooks power true;
  51.     fi
  52. else
  53.     echo "Argument needs to be true or false" >&2
  54.     exit 1
  55. fi
  56.